Commonly known to other programming language as struct.
Var:Create( Point, Number x, Number y ) Var:Point myPoint; Var:Point myOtherPoint; Var:Point anotherPoint; myPoint.x = 5; myPoint.y = 10; myOtherPoint.x = myPoint.x; myOtherPoint.y = 15; anotherPoint = myOtherPoint;